home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
5
/
DIGEST_B
/
VIEWS
/
CSELECTL.H
< prev
Wrap
Text File
|
1992-02-29
|
636b
|
28 lines
/****
* CSelectLine.h
*
* A text edit pane for a tiny editor.
*
****/
#define _H_CSelectLine
#include <CEditText.h>
struct CSelectLine : CEditText {
long selLine;
/** Contruction/Destruction **/
void ISelectLine(CView *anEnclosure, CBureaucrat *aSupervisor,
short vLoc, short vHeight);
void FindEnds(long line, long *lineStart, long *lineEnd);
void DoClick(Point hitPt, short modifierKeys, long when);
void DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
void SetSelectedLine( long line, Boolean fRedraw);
long GetSelectedLine(void);
void AdjustCursor(Point where, RgnHandle mouseRgn);
};